GetTabs(TabGroup)
Returns the specified group of tabs. You can use this method to specify a new tab group that you want displayed from a menu option.
Only invoke this method if you are using an old include file (for example, CRM.js). Include this method at the top of your ASP file and after the CRM.js include file. This method is not needed if you use the SAGECRM.js or ACCPACCRM.js include file.
Parameters
TabGroup. Specifies the name of the group of tabs to return.
Examples
<% CRM.GetTabs("NewTabGroupName") %>
Adds a new menu button that displays a new tab group. The button links to an ASP that includes the GetTabs method.
<% CRM.GetTabs() %>
Displays tabs for the current entity.
<% Response.Write(CRM.GetTabs()) %>
Displays tabs for the current entity.